Víctor Cobos, Ciudad de México

La fecha y la hora son:

Instrucciones JavaScript para mostrar el contenido de las siguientes propiedades DOM:

  1. innerHTML del elemento con id="h2":

  2. var a = document.getElementById("h2");
    a.innerHTML;
    resultado: La fecha y la hora son:


  3. outerHTML de elemento identificado por id="h1":

  4. var b = document.getElementById("h1");
    b.outerHTML;
    resultado: <h1 id="h1">Buenos días</h1>


  5. Propiedad global location.href:

  6. document.location.href
    resultado: "https://finteching.neocities.org/Modulo3/Modulo3%20DOM.html"


  7. Propiedad global location:

  8. document.location
    resultado: Location {href: "https://finteching.neocities.org/Modulo3/Modulo3%20DOM.html",
    ancestorOrigins: DOMStringList, origin: "https://finteching.neocities.org",
    replace: function, assign: function…}


  9. Propiedad global screen.width:

  10. var c = "Ancho total de pantalla: " + screen.width;
    resultado: Ancho total de pantalla: 1280


  11. Propiedad global screen.heigth:

  12. var d = "Alto total de pantalla: " + screen.height;
    resultado: Alto total de pantalla: 720

Tipografía externa de Google Fonts on line: 'Roboto'



FlexBox con borde redondeado.